How can I incrementally backup a large amount of data [with rsync]?

Posted by Annan on Server Fault See other posts from Server Fault or by Annan
Published on 2011-06-22T09:28:15Z Indexed on 2011/06/22 16:24 UTC
Read the original article Hit count: 216

Filed under:
|
|

A website contains ~40GB images + files which needs to be backed up. Rollbacks need to be possible daily for the last 30 days. And backup server < 1.2TB

My idea is to have one full backup from 30 days ago, then incremental backups for the last 30 days. On each day the last incremental backup is combined with the full backup and a new incremental backup is added.

Can this strategy be implemented with rsync, if so how?

Are there any problems with this plan? A better plan?

PS: Incremental backups, not backup incrementally (which rsync does automatically)

© Server Fault or respective owner

Related posts about backup

Related posts about rsync